home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / parser_buffer.e < prev    next >
Text File  |  2000-03-25  |  3KB  |  128 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class PARSER_BUFFER
  17.  
  18. inherit GLOBALS;
  19.  
  20. creation make
  21.  
  22. feature
  23.  
  24.    path: STRING;
  25.          -- When `is_ready', gives the `path' of the corresponding
  26.          -- buffered file.
  27.  
  28.    count: INTEGER;
  29.          -- Number of lines in the source file.
  30.  
  31.    is_ready: BOOLEAN is
  32.       do
  33.          Result := path /= Void;
  34.       end;
  35.  
  36. feature {SMALL_EIFFEL,EIFFEL_PARSER}
  37.  
  38.    load_file(a_path: STRING) is
  39.          -- Try to load `a_path' and set `is_ready' when corresponding
  40.          -- file has been loaded.
  41.       local
  42.          i: INTEGER;
  43.       do
  44.          tmp_file_read.connect_to(a_path);
  45.          if tmp_file_read.is_connected then
  46.             path := string_aliaser.item(a_path);
  47.             from
  48.                if get_line(0) /= Void then
  49.                   -- unused line.
  50.                end;
  51.                i := 1;
  52.                tmp_file_read.read_line_in(get_line(i));
  53.             until
  54.                tmp_file_read.end_of_input
  55.             loop
  56.                i := i + 1;
  57.                tmp_file_read.read_line_in(get_line(i));
  58.             end;
  59.             if text.item(i).is_empty then
  60.                count := i - 1;
  61.             else
  62.                count := i;
  63.             end;
  64.             tmp_file_read.disconnect;
  65.         if count <= 0 then
  66.            eh.append("File %"");
  67.            eh.append(path);
  68.            eh.append("%" seems to be empty.");
  69.            eh.print_as_fatal_error;
  70.         end;
  71.          else
  72.             path := Void;
  73.          end;
  74.       end;
  75.  
  76.    unset_is_ready is
  77.       do
  78.          path := Void;
  79.       end;
  80.  
  81. feature {EIFFEL_PARSER}
  82.  
  83.    item(line: INTEGER): STRING is
  84.       require
  85.          is_ready;
  86.          1 <= line;
  87.          line <= count
  88.       do
  89.          Result := text.item(line);
  90.       ensure
  91.          Result /= Void
  92.       end;
  93.  
  94. feature {NONE}
  95.  
  96.    make is
  97.       do
  98.       end;
  99.  
  100.    text: FIXED_ARRAY[STRING] is
  101.          -- To store the complete file to parse. Each line
  102.          -- is one STRING without the '%N' end-of-line mark.
  103.       once
  104.          !!Result.with_capacity(4096);
  105.       end;
  106.  
  107.    get_line(i: INTEGER): STRING is
  108.       require
  109.          i >= 0
  110.       do
  111.          if i <= text.upper then
  112.             Result := text.item(i);
  113.             Result.clear;
  114.          else
  115.             !!Result.make(medium_line_size);
  116.             text.add_last(Result);
  117.          end;
  118.       ensure
  119.          Result.is_empty;
  120.          Result.capacity >= medium_line_size;
  121.          text.item(i) = Result
  122.       end;
  123.  
  124.    medium_line_size: INTEGER is 80;
  125.  
  126. end -- PARSER_BUFFER
  127.  
  128.